This example is for Wiring version 1.0 build 0100+. If you have a previous version, use the examples included with your software. If you see any errors or have comments, please let us know.
String length() and trim() by Tom Igoe
Examples of how to use length() and trim() in a String
voidsetup()
{
Serial.begin(9600);
Serial.println("\n\nString length() and trim():");
}
voidloop()
{
// here's a String with empty spaces at the end (called white space):String stringOne = "Hello! ";
Serial.print(stringOne);
Serial.print("<--- end of string. Length: ");
Serial.println(stringOne.length());
// trim the white space off the string:
stringOne.trim();
Serial.print(stringOne);
Serial.print("<--- end of trimmed string. Length: ");
Serial.println(stringOne.length());
// do nothing whiletrue:while (true);
}